type strconv.decimal

20 uses

	strconv (current package)
		atof.go#L74: func (b *decimal) set(s string) (ok bool) {
		atof.go#L314: func (d *decimal) floatBits(flt *floatInfo) (b uint64, overflow bool) {
		atof.go#L605: 	var d decimal
		atof.go#L656: 	var d decimal
		decimal.go#L14: type decimal struct {
		decimal.go#L22: func (a *decimal) String() string {
		decimal.go#L71: func trim(a *decimal) {
		decimal.go#L81: func (a *decimal) Assign(v uint64) {
		decimal.go#L110: func rightShift(a *decimal, k uint) {
		decimal.go#L269: func leftShift(a *decimal, k uint) {
		decimal.go#L315: func (a *decimal) Shift(k int) {
		decimal.go#L335: func shouldRoundUp(a *decimal, nd int) bool {
		decimal.go#L354: func (a *decimal) Round(nd int) {
		decimal.go#L366: func (a *decimal) RoundDown(nd int) {
		decimal.go#L375: func (a *decimal) RoundUp(nd int) {
		decimal.go#L399: func (a *decimal) RoundedInteger() uint64 {
		ftoa.go#L164: 	d := new(decimal)
		ftoa.go#L236: func roundShortest(d *decimal, mant uint64, exp int, flt *floatInfo) {
		ftoa.go#L266: 	upper := new(decimal)
		ftoa.go#L285: 	lower := new(decimal)